home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / tegl6b.zip / INTROPAK.EXE / lha / TWWINDOW.DOC < prev    next >
Text File  |  1991-08-16  |  1KB  |  31 lines

  1. {-----------------------------------------------------------------------------}
  2. {               TEGL Windows ToolKit II                  }
  3. {          Copyright (C) 1990, 1991 TEGL Systems Corporation              }
  4. {                All Rights Reserved.                  }
  5. {-----------------------------------------------------------------------------}
  6. UNIT twWindow;
  7.  
  8. INTERFACE
  9.  
  10. USES
  11.   TEGLFont,
  12.   fastgrph,
  13.   twcommon,
  14.   twkernel;
  15.  
  16.   Procedure twCrtAssign(wf : WinFramePtr);
  17.   Procedure twCrtON;
  18.   Procedure twCrtOFF;
  19.   Procedure twGotoXy(wf : WinFramePtr; x_,y_ : Integer);
  20.   Function twHiX(wf : WinFramePtr; x_ : Integer) : Integer;
  21.   Function twHiY(wf : WinFramePtr; y_ : Integer) : Integer;
  22.   Function twLoX(wf : WinFramePtr; x_ : Integer) : Integer;
  23.   Function twLoY(wf : WinFramePtr; y_ : Integer) : Integer;
  24.   Procedure twSetTextColor(wf : WinFramePtr; Color : Byte);
  25.   Procedure twSetTextBackGround(wf : WinFramePtr; Color : byte);
  26.   Procedure twWriteChar(wf: WinFramePtr; c : char);
  27.   Procedure twWriteString(wf: WinFramePtr; s : string);
  28.   Procedure twWriteXY(wf : WinFramePtr; col,row :Integer; s : string);
  29.  
  30. IMPLEMENTATION
  31.